码迷,mamicode.com
首页 >  
搜索关键字:http... ...分类:Web程序 时间:2020-03-23 20:52:18阅读次数:116![image](https:/upload-images.jianshu.io/upload_images/19251418-020e0a31bba97098.jpg    ( 446173个结果
seo优化
基本体现在代码中的meta标签之中 关键字 <meta name="keywords" content="关键字1, 关键字2, 关键字3" /> 描述 <meta name="description" content="这里写对这个网页的描述"> 重定向 <meta http-equiv="ref ...
分类:其他好文   时间:2021-03-09 13:12:19    阅读次数:0
ArrayList和Vector的扩容机制
转自:http://man-yutao.iteye.com/blog/1317446 ArrayList和Vector都是继承了相同的父类和实现了相同的接口。如下 Java代码 public class Vector<E> extends AbstractList<E> implements Lis ...
分类:其他好文   时间:2021-03-09 13:08:46    阅读次数:0
vs code使用git---http方式
1.从git上复制http路径 2.在vs code的工作区新建文件夹 3.选择添加远程储存库 4.输入复制的git路径然后命名远程储存库名称 5.选择从所有远程储存库中拉取分支 6.选择分支,切换当前的分支 6.1.点击左下角进入分支选择 6.2点击签出到 7.点击拉取,获取git代码 8.当更改 ...
分类:Web程序   时间:2021-03-09 13:05:26    阅读次数:0
LeetCode初级算法练习题4_存在重复元素
###1.我的解题代码 class Solution { public boolean containsDuplicate(int[] nums) { boolean flag = false; HashSet<Integer> set = new HashSet<>(); for(int i:nu ...
分类:编程语言   时间:2021-03-09 12:58:00    阅读次数:0
fastreport
打印当前记录,直接 打印报表:多条记录 begin frxReport1.ShowReport; frxReport1.Print; end;//预览 ,打印 frxReport1.LoadFromFile('*****.fr3') ;//载入模板 frxReport1.PrepareReport( ...
分类:其他好文   时间:2021-03-09 12:55:05    阅读次数:0
ABC101 题解
A - Eating Symbols Easy 没什么好说的,按题意模拟,为 \(+\) 时就 \(sum++\) ,为 \(-\) 时就 \(sum--\) 。 \(code\) B - Digit Sums 分离数位判断即可。 \(code\) C - Minimization 有点小思维的结论 ...
分类:其他好文   时间:2021-03-08 14:22:49    阅读次数:0
1166【毕设课设】基于8086的16位键盘操作系统仿真设计
【资源下载】百度网盘下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl ;各种地址 nCS5 EQU 0DE28H PA8255 EQU nCS5+0 PB8255 EQU nCS5+2 PC8255 EQU nCS5+4 CTL8255 EQU nCS ...
分类:其他好文   时间:2021-03-08 14:19:34    阅读次数:0
leetcode每日一题之8.分割回文串
分割回文串 回溯算法 求所有解,所以使用回溯算法来枚举所有的解。代码如下 class Solution { /** * @param String $s * @return String[][] */ function partition($s) { $res = []; $this->backtr ...
分类:其他好文   时间:2021-03-08 14:15:59    阅读次数:0
WinScap出现:拒绝访问、服务器拒绝了SFTP连接,但它监听FTP连接。 想要用FTP协议来代替SFTP吗?最好是用加密的。
拒绝访问解决: https://blog.csdn.net/weixin_30781433/article/details/98949490 服务器拒绝了SFTP连接,但它监听FTP连接。 想要用FTP协议来代替SFTP吗?最好是用加密的: https://blog.csdn.net/weixin_ ...
分类:Windows程序   时间:2021-03-08 14:07:48    阅读次数:0
IIS下配置php运行环境。
1、首先到php官网上下载php(http://php.net/downloads.php),版本根据自己的需要定。我用的是Current Stable PHP 7.2.6, 因为是windowns系统所以点击“Windows downloads”,进入windowns版本下载。 我用的是“VC15 ...
分类:Web程序   时间:2021-03-08 14:03:52    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!